home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / progwin.zip / ABOUT1.ZIP / ABOUT1.MAK < prev    next >
Text File  |  1991-10-22  |  331b  |  19 lines

  1. OBJS = about1.obj
  2. INCPATH = C:\BORLANDC\INCLUDE
  3. FLAGS = -W -mm -v -I$(INCPATH)
  4.  
  5. about1.exe: $(OBJS) about1.res about1.def
  6.         BCC $(FLAGS) -eabout1.exe @&&!
  7. $(OBJS)
  8. !
  9.         rc about1.res
  10.  
  11. .c.obj:
  12.         BCC -c $(FLAGS) {$< }
  13.  
  14. .cpp.obj:
  15.         BCC -c $(FLAGS) {$< }
  16.  
  17. .rc.res:
  18.         rc -r -i$(INCPATH) $<
  19.